Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

636138 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/127 - Armstrong Checker

readme cody/swapnilsparsh/30DaysOfJavaScript/127 - Armstrong Checker/readme
171 Views
0 Comments
Media file
bgi.jpg cody/swapnilsparsh/30DaysOfJavaScript/127 - Armstrong Checker/bgi.jpg
61 Views
0 Comments
Media file
Armstrong.js cody/swapnilsparsh/30DaysOfJavaScript/127 - Armstrong Checker/Armstrong.js
111 Views
0 Comments
const txtInput = document.querySelector(".inputs input"),
checkBtn = document.querySelector(".inputs button"),
infoTxt = document.querySelector(".info-txt");
let filterInput;


// javascript program to check if x is a perfect square

Armstrong.css cody/swapnilsparsh/30DaysOfJavaScript/127 - Armstrong Checker/Armstrong.css
117 Views
0 Comments
/* Import Google Font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
index.html cody/swapnilsparsh/30DaysOfJavaScript/127 - Armstrong Checker/index.html
309 Views
0 Comments
<!DOCTYPE html>

<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Armstrong Checker in JavaScript</title>
<link rel="stylesheet" href="Armstrong.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">